div{
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    margin-bottom: 20px;
    background-color: lightBlue;
}

/*Sélectionne les éléments a 
avec un attribut href 
contenant "google"*/
.set1 a[href*="google"]{
     background-color: orange;
}

/*Sélectionne les éléments a 
avec un attribut href contenant
 *"google", "Google", "gOOgle", 
 "GOOGLE", etc.*/
.set2 a[href*="google" i]{
     background-color: orange;
}